home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / TempoHelper / source code / ShowIcon7.c < prev    next >
Text File  |  1997-06-28  |  7KB  |  258 lines

  1.     #include "Icons.h"
  2.     // #include "IconUtilsPriv.h"
  3.  
  4. /*
  5.     ShowIcon7.c
  6.     
  7.     ShowINIT compatible routine that shows 'ICN#' and 'iclx' flavor icons.
  8.     For use by all INITs in System 7 and beyond.
  9.     
  10.     This code is based on Patrick C. Beard's ShowIconFamily
  11.     by Patrick C. Beard, which in turn was derived from the
  12.     original ShowInit by Paul Mercer, Darin Adler,
  13.     Paul Snively, and Steve Capps.
  14.     
  15.     Modified by James W. Walker for compatibility with IconWrap 1.2,
  16.     for use as a separate code resource, and to use the new System 7
  17.     icon-drawing routines.  This code is in the public domain.
  18.     
  19.     Addresses for James W. Walker: 76367,2271@compuserve.com or
  20.         walkerj@math.scarolina.edu
  21.     
  22.     Instructions for use:
  23.     
  24.         • Create a family of icons with ResEdit 2.1 or later.  This will
  25.             include 'ICN#', 'icl4', & 'icl8' icons, all with the
  26.             same resource ID.
  27.         
  28.         To use within a larger INIT project:
  29.             • #define SEPARATE_CODE 0  below.
  30.             • Call ShowIcon7( id, adv ) with the resource id of
  31.                 the family that you used.  The Boolean parameter adv
  32.                 indicates whether you want the next use of ShowIcon7
  33.                 to advance to a new position.  Normally you pass TRUE,
  34.                 but you can get an animated-icon effect by passing FALSE
  35.                 all except the last time you call ShowIcon7.
  36.         
  37.         To use as a separate code resource:
  38.             • #define SEPARATE_CODE 1  below.
  39.             • Set the project type to code resource, set the code type
  40.                 and resource ID (I use type 'Code', ID -4048 for cdevs),
  41.                 compile and merge into your INIT or cdev file.
  42.                 Set the resource type to Locked, so you won't have
  43.                 to call HLock when you use it.
  44.             • In your main INIT code, call ShowIcon7 like so:
  45.                 pascal void (*ShowIcon7)( short resid, Boolean adv );
  46.                 Handle  show_init;
  47.                 
  48.                 show_init = GetResource( 'Code', -4048 );
  49.                 ShowIcon7 = (pascal void (*)(short, Boolean))
  50.                             StripAddress( *show_init );
  51.                 ShowIcon7( iconID, advance );
  52.  */
  53.  
  54. #define SEPARATE_CODE    0
  55.  
  56.  
  57. #if SEPARATE_CODE
  58. #define        ShowIcon7        main    /* JWW */
  59. #endif
  60.  
  61. #ifndef nil
  62. #define nil ((void*)0L)
  63. #endif
  64.  
  65. #ifndef topLeft
  66.     #define topLeft(r) ((Point*)&r)[0])
  67. #endif
  68. #ifndef botRight
  69.     #define botRight(r) ((Point*)&r)[1])
  70. #endif
  71.  
  72. typedef struct myQDGlobals {
  73.     char privates[76];
  74.     long randSeed;
  75.     BitMap screenBits;
  76.     Cursor arrow;
  77.     Pattern dkGray;
  78.     Pattern ltGray;
  79.     Pattern gray;
  80.     Pattern black;
  81.     Pattern white;
  82.     GrafPtr thePort;
  83.     long    end;
  84. } myQDGlobals;
  85.  
  86. /* prototypes */
  87. pascal void ShowIcon7(short iconId, Boolean advance);
  88. static void DrawBWIcon( short iconId, Rect *icon_rect, Boolean visible );
  89. static void Next_position( void );
  90. static void GetIconRect( register Rect* iconRect, Rect *screen_rect );
  91.  
  92. /* this is where it all happens. */
  93.  
  94. pascal void ShowIcon7( short iconId, Boolean advance )
  95. {
  96.     long    oldA5;
  97.     myQDGlobals qd;                /* our QD globals. */
  98.     SysEnvRec environment;        /* machine configuration. */
  99.     CGrafPort gp;                /* our grafport. */
  100.     Rect    icon_rect;
  101.     OSErr    err;
  102.     
  103.     /* get a value for A5, a structure that mirrors qd globals. */
  104.     oldA5 = SetA5((long)&qd.end);
  105.     InitGraf(&qd.thePort);
  106.     
  107.     /* find out what kind of machine this is. */
  108.     SysEnvirons(curSysEnvVers, &environment);
  109.  
  110.     GetIconRect( &icon_rect, &qd.screenBits.bounds );
  111.  
  112.     /*
  113.         The old IconWrap INIT patches CopyBits but does not know about
  114.         CopyMask or IconDispatch.  So in the color case, we draw the
  115.         black and white icon with an empty mask region.
  116.     */
  117.  
  118.     if ( (environment.systemVersion >= 0x0700) && environment.hasColorQD )
  119.     {
  120.         OpenCPort(&gp);
  121.         DrawBWIcon( iconId, &icon_rect, false );
  122.         err = PlotIconID( &icon_rect, atNone, ttNone, iconId );
  123.         CloseCPort(&gp);
  124.     }
  125.     else
  126.     {
  127.         OpenPort((GrafPtr)&gp);
  128.         DrawBWIcon( iconId, &icon_rect, true );
  129.         ClosePort((GrafPtr)&gp);
  130.     }
  131.     
  132.     if (advance)
  133.         Next_position(); /* JWW */
  134.  
  135.     SetA5(oldA5);
  136. }
  137.  
  138. /*
  139.     ShowInit's information is nestled at the tail end of CurApName.
  140.     It consists of a short which encodes the next horizontal offset,
  141.     and another short which is that value checksummed with the function below.
  142.  */
  143.  
  144. #define CurApName_LM    0x910
  145. #define ShowINITTable ((short*)(CurApName_LM + 32 - 4))
  146. #define CheckSumConst 0x1021        /* magic value to check-sum with. */
  147.  
  148. #define InitialXPosition 8            /* initial horizontal offset. */
  149. #define YOffset            40            /* constant from bottom to place the icon. */
  150. #define XOffset            40            /* amount to change it by. */
  151. #define ICON_WIDTH        32
  152. #define kDefaultRes 0x00480000 /* Default resolution is 72 DPI; Fixed type */
  153.  
  154. /* CheckSum() computes the magic value to determine if ShowInit's have run already. */
  155. #pragma parameter rol(__D0)
  156. static asm short rol(short x)
  157. {
  158.     rol.w    #1, d0
  159.     rts
  160. }
  161.  
  162. static short CheckSum(register short x)
  163. {
  164.     #if 0
  165.     asm {
  166.         rol.w    #1, x
  167.     }
  168.     return (x ^ CheckSumConst);
  169.     #else
  170.     return (rol(x) ^ CheckSumConst);
  171.     #endif
  172. }
  173.  
  174. /*
  175.     GetIconRect() generates an appropriate rectangle to display the
  176.     next INIT's icon in.
  177.     It is also responsible for updating the horizontal
  178.     position in low memory.  This is a departure from
  179.     the original ShowInit code, which updates low
  180.     memory AFTER displaying the icon. -- changed by JWW
  181.     This code won't generate an icon position until it is certain that the icon can be loaded, so the
  182.     same behaviour occurs.
  183.     
  184.     This routine also generates a rectangle which is guaranteed to be onscreen.  It
  185.     does this by taking the horizontal offset modulo the screen width to generate
  186.     the horizontal position of the icon, and the offset divided by the screen
  187.     width to generate the proper row.
  188.  */
  189.  
  190. static void GetIconRect(register Rect* iconRect, Rect *screen_rect )
  191. {
  192.     register short screenWidth;
  193.     
  194.     screenWidth = screen_rect->right - screen_rect->left;
  195.     screenWidth -= screenWidth % XOffset;
  196.     /* if we are the first INIT to run we need to initialize the horizontal value. */
  197.     if (CheckSum(ShowINITTable[0]) != ShowINITTable[1])
  198.         ShowINITTable[0] = InitialXPosition;
  199.     
  200.     /* compute top left of icon's rect. */
  201.     iconRect->left = (ShowINITTable[0] % screenWidth);
  202.     iconRect->top = screen_rect->bottom -
  203.         YOffset * (1 + (ShowINITTable[0] / screenWidth));
  204.     iconRect->right = iconRect->left + 32;
  205.     iconRect->bottom = iconRect->top + 32;
  206.     
  207. }
  208.  
  209. /*
  210.     JWW: In Beard's original version, this was done at the end of
  211.     GetIconRect. That caused incorrect behavior when IconWrap 1.2 was
  212.     used to wrap icons.  Namely, if an INIT using that version of
  213.     ShowIconFamily was the first in a row, then the second icon in that
  214.     row would land on top of it.
  215. */
  216. static void Next_position( void )
  217. {
  218.     /* advance the position for the next icon. */
  219.     ShowINITTable[0] += XOffset;
  220.     
  221.     /* recompute the checksum. */
  222.     ShowINITTable[1] = CheckSum(ShowINITTable[0]);    
  223. }
  224.  
  225. /* DrawBWIcon() draws the 'ICN#' member of the icon family. */
  226.  
  227. void DrawBWIcon( short iconId, Rect *icon_rect, Boolean visible )
  228. {
  229.     Handle        icon;
  230.     BitMap        source, destination;
  231.     RgnHandle    empty_mask;
  232.     GrafPtr        port;
  233.     
  234.     icon = Get1Resource('ICN#', iconId);
  235.     if (!icon)
  236.         return;
  237.     HLock(icon);
  238.     
  239.     /* prepare the source and destination bitmaps. */
  240.     source.baseAddr = *icon + 128;                    /* mask address. */
  241.     source.rowBytes = 4;
  242.     SetRect(&source.bounds, 0, 0, 32, 32);
  243.     GetPort( &port );
  244.     destination = ((GrafPtr)port)->portBits;
  245.     empty_mask = visible? nil : NewRgn();
  246.     
  247.     /* transfer the mask. */
  248.     CopyBits(&source, &destination, &source.bounds, icon_rect,
  249.         srcBic, empty_mask);
  250.     
  251.     /* and the icon. */
  252.     source.baseAddr = *icon;    
  253.     CopyBits(&source, &destination, &source.bounds, icon_rect,
  254.         srcOr, empty_mask);
  255.     
  256.     if (empty_mask) DisposeRgn( empty_mask );
  257. }
  258.